Welcome![Sign In][Sign Up]
Location:
Search - sql p

Search list

[Program docSQL入门经典

Description:

SQL入门经典 附录光盘源代码


Platform: | Size: 20148 | Author: yingao | Hits:

[JSP/JavaJSP+SQL Server人才网站整站代码

Description: <p>  本系统的开发人员均来自国内的大型人才网站的研发部,拥有强大的技术能力及丰富的经验,所开发出来的网站系统性能卓越,功能强大,应用最新的开发技术及体系结构。全站使用JSP + Sql Server设计开发,强大的求职应聘管理系统及企业招聘管理系统,还有完善的后台维护功能。</p> <p>网站主要功能包括:个人求职管理、企业招聘管理,知识库,毕业生频道,培训充电</p> <p>网站后台主要功能:个人简历验证,企业信息验证,企业会员权限开通管理,广告系统管理等。</p>
Platform: | Size: 3223529 | Author: Josephz | Hits:

[.net无限级树形菜单(Sql数据库) MyTree

Description:

无限级树形菜单(Sql数据库)

利用VS2005+Sql2000开发的一个无限级树形菜单,比较简单,实用性比较强
DB_CNZZ下为数据库文件,附加即可
数据库连接配置修改DefaultTree.aspx.cs中的SqlConnection con = new SqlConnection("server=(local);database=GHRQ;uid=sa;pwd=sa");

作者:chy2z


Platform: | Size: 273104 | Author: skyin0912 | Hits:

[ADO-ODBCSQL SERVER与ACCESS、EXCEL数据转换

Description: This a p熟悉SQL SERVER 2000的数据库管理员都知道,其DTS可以进行数据的导入导出,其实,我们也可以使用Transact-SQL语句进行导入导出操作。在 Transact-SQL语句中,我们主要使用OpenDataSource函数、OPENROWSET 函数,关于函数的详细说明,请参考SQL联机帮助。利用下述方法,可以十分容易地实现SQL SERVER、ACCESS、EXCEL数据转换,hoto of a general purpose timer/counter card you can wirewrap in a weekend. It plugs into your PC s ISA bus just like a sound or modem card. It gives high-resolution timing (microseconds). Because of its programmablity, it is very powerful and flexible. You can even control DC or servo motors using pulse-width modulated (PWM), or stepper motors using its square wave capabilities. The figure below is the actual output (square wave) from the 8254 card captured by an oscilloscope: -This a p familiar with the SQL Server 2000 database administrators know, the DTS can import data is derived, in fact, we can also use Transact-SQL for importing and exporting operation. The Transact-SQL statements, we mainly use OpenDataSource function, OPENROWSET function, the function of the details, please refer to SQL online help. Use the following method, it is easy to SQL Server, Access, Excel data conversion, HOTO of a general purpose timer / counter card you can wirewrap in a weekend. It plugs into your PC ISA bus s just like a sound card or modem. It gives high-resolution timing (microseconds). Because of its programmablity, it is very powerful and flexible. You can even control or DC servo motors using pulse-width modulated (PWM), or Stepper motors using its square wave capabi
Platform: | Size: 5788 | Author: 海应 | Hits:

[Web Server信息管理系统

Description:

用java applet编写并使用SQL做为数据库框架


Platform: | Size: 740577 | Author: sonytt | Hits:

[DatabaseOracle PLSQL 编程手册(SQL大全).rar

Description:

Oracle PLSQL 编程手册(SQL大全).rar


Platform: | Size: 15201 | Author: abscdc | Hits:

[Windows Kernel租碟系统VC+SQL

Description:

租碟系统,对影碟进行管理和维护。服务器使用SQL SERVER2000。


Platform: | Size: 2627611 | Author: zhuyudong19 | Hits:

[SQL Server读写SQL中的image字段.zip

Description: Private Declare Function DeleteFile Lib "kernel32" Alias "DeleteFileA" (ByVal lpFileName As String) As Long '************************************************************* Public Function ImportPhoto(sPicFile As String, sEmpID As String) As String Dim rcsPic As ADODB.Recordset Dim sMax As String Dim sInsertPic As String Dim rcsTemp As New Recordset Dim sTempSQL As String If Trim(sPicFile) = "" Then Exit Function On Error GoTo ErrorImportPhoto Set rcsPic = New ADODB.Recordset rcsPic.CursorType = adOpenKeyset rcsPic.LockType = adLockOptimistic ' rcsPic.Open "T_PPICTURE ", AstDbCnt, , , adCmdTable 'astdbcnt 替换为你连接方式 Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.LoadFromFile sPicFile rcsPic.AddNew rcsPic.Fields("PERS").Value = sEmpID rcsPic.Fields("PIC").Value = mstream.Read rcsPic.Update mstream.Close Set mstream = Nothing rcsPic.Close Set rcsPic = Nothing Exit Function ErrorImportPhoto: ImportPhoto = "FALSE" End Function '注意要将 AstDbCnt 替换为你的oracle 连接 Public Function DisplayPhoto(oPicture As PictureBox, sPicID As String) Dim rcsDisplay As ADODB.Recordset Set rcsDisplay = New ADODB.Recordset Dim mstream As ADODB.Stream Dim mc0 As String rcsDisplay.Open "Select * from T_PPICTURE where PERS = '" & sPicID & "'", AstDbCnt, adOpenKeyset, adLockOptimistic If rcsDisplay.EOF Then oPicture.Picture = LoadPicture() Exit Function End If If IsNull(rcsDisplay.Fields("PIC").Value) Then oPicture.Picture = LoadPicture() Exit Function End If Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.Write rcsDisplay.Fields("PIC").Value strclose = App.Path & "\AstPhoto_temp" DeleteFile (strclose) mstream.SaveToFile strclose mstream.Close Set mstream = Nothing rcsDisplay.Close Set rcsDisplay = Nothing oPicture.Picture = LoadPicture(strclose) End Function Private Sub Command1_Click() Set cn = New ADODB.Connection cn.Open "Provider=SQLOLEDB;data Source=IWP2;Initial Catalog=T213;User Id=sa;Password=sql123" Set rs = New ADODB.Recordset rs.Open "Select * from QB_T213PMPD where DT=2006080818", cn, adOpenKeyset, adLockOptimistic Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.Write rs.Fields("MPI").Value mstream.SaveToFile "P:\T213_data\ShowMPI\T213_3.mpi", adSaveCreateOverWrite rs.Close cn.Close End Sub Private Sub Command2_Click() Set cn = New ADODB.Connection cn.Open "Provider=SQLOLEDB;data Source=;Initial Catalog=pubs;User Id=;Password=" Set rs = New ADODB.Recordset rs.Open "Select * from pub_info", cn, adOpenKeyset, adLockOptimistic Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.LoadFromFile "" rs.Fields("logo").Value = mstream.Read rs.Update rs.Close cn.Close End Sub
Platform: | Size: 3123 | Author: wuzhiyong_130@163.com | Hits:

[Program docJET-SQL 文档手册

Description:

Microsoft Jet-SQL 使用手删


Platform: | Size: 206705 | Author: ycyhjj2865 | Hits:

[Database图书管理系统简介

Description:

图书 管理 系统 .NET SQL


Platform: | Size: 847348 | Author: ychui@ | Hits:

[BooksSQL Server 2000 看图教程

Description: SQL Server 2000 看图教程-SQL Server 2000 flashcards Guide
Platform: | Size: 17784832 | Author: 刘云 | Hits:

[ADO-ODBCSQL SERVER与ACCESS、EXCEL数据转换

Description: This a p熟悉SQL SERVER 2000的数据库管理员都知道,其DTS可以进行数据的导入导出,其实,我们也可以使用Transact-SQL语句进行导入导出操作。在 Transact-SQL语句中,我们主要使用OpenDataSource函数、OPENROWSET 函数,关于函数的详细说明,请参考SQL联机帮助。利用下述方法,可以十分容易地实现SQL SERVER、ACCESS、EXCEL数据转换,hoto of a general purpose timer/counter card you can wirewrap in a weekend. It plugs into your PC s ISA bus just like a sound or modem card. It gives high-resolution timing (microseconds). Because of its programmablity, it is very powerful and flexible. You can even control DC or servo motors using pulse-width modulated (PWM), or stepper motors using its square wave capabilities. The figure below is the actual output (square wave) from the 8254 card captured by an oscilloscope: -This a p familiar with the SQL Server 2000 database administrators know, the DTS can import data is derived, in fact, we can also use Transact-SQL for importing and exporting operation. The Transact-SQL statements, we mainly use OpenDataSource function, OPENROWSET function, the function of the details, please refer to SQL online help. Use the following method, it is easy to SQL Server, Access, Excel data conversion, HOTO of a general purpose timer/counter card you can wirewrap in a weekend. It plugs into your PC ISA bus s just like a sound card or modem. It gives high-resolution timing (microseconds). Because of its programmablity, it is very powerful and flexible. You can even control or DC servo motors using pulse-width modulated (PWM), or Stepper motors using its square wave capabi
Platform: | Size: 5120 | Author: 海应 | Hits:

[BooksPLSQL

Description: oracl PL/SQL PPT教程.这很不错-oracl PL/SQL PPT tutorial. This is very good
Platform: | Size: 30720 | Author: lam | Hits:

[SQL ServerSQL_pdf

Description: 【全美经典】 SQL 编程习题与解答(中文版,[美] Ramon A. Mata-Toledo、Pauline K. Cushman 著).pdf-[National Classic] SQL programming exercises Q
Platform: | Size: 5302272 | Author: 刘磊 | Hits:

[SQL ServerSQL+Server+2000(PDF)1

Description: 学习SQL的教程,简单明了,希望和大家分享,学习-Learning SQL tutorial, simple and clear, would like to share, learn
Platform: | Size: 9451520 | Author: jo | Hits:

[SQL ServerSQL

Description: 一个非常好的SQL Server的PPT文档,对初学数据库的人比较有用-A very good SQL Server PPT documents, on the beginner database more useful to people
Platform: | Size: 10218496 | Author: 田景 | Hits:

[OtherTheArtofSQL

Description: The art of Sql, 英文chm电子书,中文的Pdf(不全)-The art of Sql
Platform: | Size: 2349056 | Author: gehuiwin | Hits:

[SQL ServerSQLServer2005

Description: 数据库技术与应用——SQL Server 2005教程,清华大学的教程ppt-Database Technology and Applications- SQL Server 2005 tutorials, Tsinghua University tutorial ppt
Platform: | Size: 2762752 | Author: byrwu | Hits:

[SQL ServerSQL-language

Description: 讲解SQL server的PPT,内容精炼简明,是初学者很好的参考资料。-Explain the SQL server in the PPT, the content of refined simplicity, is a good reference for beginners.
Platform: | Size: 1267712 | Author: | Hits:

[SQL ServerSQL-Server-2000

Description: SQL Server 2000开发者指南(PDF)
Platform: | Size: 8499200 | Author: 皮鞋匠 | Hits:
« 12 3 4 5 6 »

CodeBus www.codebus.net